home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_443 / dice / dice.lzh / include / lib / atexit.h next >
C/C++ Source or Header  |  1990-08-02  |  253b  |  20 lines

  1.  
  2. /*
  3.  *  LIB/ATEXIT.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _LIB_ATEXIT_H
  9. #define _LIB_ATEXIT_H
  10.  
  11. typedef struct AtExit {
  12.     struct  AtExit *Next;
  13.     void (*Func)(void);
  14. } AtExit;
  15.  
  16. extern AtExit *_ExitBase;
  17.  
  18. #endif
  19.  
  20.